<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Sæ‰‹æœºç«¯*/
.box20240901103924_wai_kuang{
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	justify-content:center;	
}
.box20240901103924{
	width: 100%;
	display: grid;
	grid:"l1"; /*ä¸€åˆ—*/
	grid-template-columns: 1fr; /* åˆ—å®½:ä¸¤åˆ—å®½åº¦ç›¸åŒï¼Œéƒ½æ˜¯1fr */
	gap:32px;/*è¡Œåˆ—é—´è·*/
}
/*è®¾ç½®åˆ—æ•°æ®*/
.box20240901103924_1{
	width: 100%;
	font-size: 24px;
	color: #33577b;
	font-weight: bold;
	font-style: italic;
}
.box20240901103924_3 img{
	height: 85px;
}


/*Eæ‰‹æœºç«¯*/

/*Séžæ‰‹æœºç«¯*/
@media (min-width: 768px){
.box20240901103924 {
    display: grid;
    grid: "l1 l2";
    grid-template-columns: 3fr 2fr 1fr;
    /* gap: 32px; */
    column-gap: 32px;
    row-gap: 32px;
    align-items: center;
    justify-items: end;
}
}
</pre></body></html>